home *** CD-ROM | disk | FTP | other *** search
/ MacWorld Online: Hot Shareware / MacWorld CD-ROM Online (Hot Shareware).cdr / MacWorld2 movie / 00206.ls < prev    next >
Encoding:
Text File  |  1996-03-06  |  484 b   |  18 lines

  1. on mouseDown
  2.   global scrCount, scrMax, T
  3.   repeat while the mouseDown
  4.     if scrCount < 1 then
  5.       set the locV of sprite 24 to 108
  6.       set the locV of sprite 23 to 108
  7.       updateStage()
  8.       next repeat
  9.     end if
  10.     set the locV of sprite 1 to the locV of sprite 1 + 15
  11.     set the locV of sprite 24 to the locV of sprite 24 - T
  12.     set the locV of sprite 23 to the locV of sprite 23 - T
  13.     updateStage()
  14.     set scrCount to scrCount - 1
  15.   end repeat
  16.   moveHotSpots()
  17. end
  18.